home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
mslang
/
cursor
/
cursor.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-18
|
340 b
|
25 lines
#ifndef __CURSOR_H_
#define __CURSOR_H_
#define NORMALCURSOR 0x0707
#define NOCURSOR 0x2000
#define BLOCKCURSOR 0x0007
#ifdef __cplusplus
extern "C" {
#endif
void eeol();
int wherex();
int wherey();
void gotoxy(int x, int y);
void showcursor(int type);
int getcursor();
#ifdef __cplusplus
}
#endif
#endif